home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2004 April / Gamestar_61_2004-04_dvdb.iso / DVDStar / Editace / hltp.exe / {app} / Source Code / MAP Viewer / ConfigLoader.h < prev    next >
C/C++ Source or Header  |  2003-08-05  |  342b  |  19 lines

  1. #pragma once
  2.  
  3. using namespace System::IO;
  4.  
  5. #include "stdafx.h"
  6.  
  7. __gc class CConfigLoader
  8. {
  9. private:
  10.     CConfig *Config;
  11.     RichTextBox *txtConsole;
  12.  
  13. public:
  14.     CConfigLoader(CConfig *Config, RichTextBox *txtConsole);
  15.     bool LoadConfigFile(String *sFile);
  16.  
  17. private:
  18.     bool ProcessLine(String *sLine, String **sArg, String **sVal);
  19. };